2026-09-21 00:51:39,069 [ 252334 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2026-09-21 00:51:39,069 [ 252334 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2026-09-21 00:51:39,069 [ 252334 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2026-09-21 00:51:39,070 [ 252334 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_w90h77 --privileged --dns-search='.' --memory=30709030912 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [1 item] scheduling tests via LoadFileScheduling test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup [gw0] [100%] FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup =================================== FAILURES =================================== _________________________ test_shutdown_cancels_backup _________________________ [gw0] linux -- Python 3.10.12 /usr/bin/python3 def test_shutdown_cancels_backup(): > with NoTrashChecker() as no_trash_checker: test_backup_restore_on_cluster/test_cancel_backup.py:556: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = type = None, value = None, traceback = None def __exit__(self, type, value, traceback): list_of_znodes = set( node1.query( "SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' " + "AND NOT (name == 'alive_tracker')" ).splitlines() ) new_znodes = list_of_znodes.difference(self.__previous_list_of_znodes) if new_znodes: print(f"Found nodes in ZooKeeper: {new_znodes}") for node in new_znodes: print( f"Nodes in '/clickhouse/backups/{node}':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}'" ) ) print( f"Nodes in '/clickhouse/backups/{node}/stage':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}/stage'" ) ) if self.check_zookeeper: assert new_znodes == set() list_of_backups = set( os.listdir(os.path.join(node1.cluster.instances_dir, "backups")) ) new_backups = list_of_backups.difference(self.__previous_list_of_backups) unfinished_backups = set( backup for backup in new_backups if not os.path.exists( os.path.join(node1.cluster.instances_dir, "backups", backup, ".backup") ) ) new_backups = set( backup for backup in new_backups if backup not in unfinished_backups ) if new_backups: print(f"Found new backups: {new_backups}") if unfinished_backups: print(f"Found unfinished backups: {unfinished_backups}") assert new_backups == set(self.expect_backups) assert unfinished_backups.difference(self.allow_unfinished_backups) == set() all_errors = set() start_time = time.strftime( "%Y-%m-%d %H:%M:%S", self.__start_time_for_collecting_errors ) for node in nodes: errors_query_result = node.query( "SELECT name FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "') " + "AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) " + "AND NOT (name == 'NO_ELEMENTS_IN_CONFIG')" ) errors = errors_query_result.splitlines() if errors: print(f"{get_node_name(node)}: Found errors: {errors}") print( node.query( "SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "')" ) ) for error in errors: > assert (error in self.expect_errors) or (error in self.allow_errors) E AssertionError: assert ('NETLINK_ERROR' in ['QUERY_WAS_CANCELLED'] or 'NETLINK_ERROR' in []) E + where ['QUERY_WAS_CANCELLED'] = .expect_errors E + and [] = .allow_errors test_backup_restore_on_cluster/test_cancel_backup.py:394: AssertionError ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2026-09-21 00:51:46.275000 [ 644 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2026-09-21 00:51:46.305000 [ 644 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-09-21 00:51:46.305000 [ 644 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2026-09-21 00:51:46.305000 [ 644 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2026-09-21 00:51:46.306000 [ 644 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2026-09-21 00:51:46.334000 [ 644 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2026-09-21 00:51:46.338000 [ 644 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2026-09-21 00:51:46.339000 [ 644 ] INFO : Running tests in /ClickHouse/tests/integration/test_backup_restore_on_cluster/test_cancel_backup.py (cluster.py:2738, start) 2026-09-21 00:51:46.339000 [ 644 ] DEBUG : Cluster start called. is_up=False (cluster.py:2745, start) 2026-09-21 00:51:46.369000 [ 644 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2026-09-21 00:51:46.400000 [ 644 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2026-09-21 00:51:46.430000 [ 644 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2026-09-21 00:51:46.430000 [ 644 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2026-09-21 00:51:46.461000 [ 644 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2026-09-21 00:51:46.492000 [ 644 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2026-09-21 00:51:46.520000 [ 644 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2026-09-21 00:51:46.521000 [ 644 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2026-09-21 00:51:46.553000 [ 644 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2026-09-21 00:51:46.554000 [ 644 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup-gw0 (cluster.py:879, cleanup) 2026-09-21 00:51:46.554000 [ 644 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2026-09-21 00:51:46.587000 [ 644 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2026-09-21 00:51:46.587000 [ 644 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2026-09-21 00:51:46.627000 [ 644 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2026-09-21 00:51:46.627000 [ 644 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2026-09-21 00:51:46.627000 [ 644 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2026-09-21 00:51:46.628000 [ 644 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2026-09-21 00:51:46.657000 [ 644 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-09-21 00:51:46.657000 [ 644 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) 2026-09-21 00:51:46.657000 [ 644 ] DEBUG : Setup directory for instance: node1 (cluster.py:2758, start) 2026-09-21 00:51:46.659000 [ 644 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2026-09-21 00:51:46.659000 [ 644 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2026-09-21 00:51:46.659000 [ 644 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2026-09-21 00:51:46.660000 [ 644 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2026-09-21 00:51:46.661000 [ 644 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/configs/config.d (cluster.py:4741, create_dir) 2026-09-21 00:51:46.662000 [ 644 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/database (cluster.py:4758, create_dir) 2026-09-21 00:51:46.662000 [ 644 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/logs (cluster.py:4769, create_dir) 2026-09-21 00:51:46.663000 [ 644 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4850, create_dir) 2026-09-21 00:51:46.663000 [ 644 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/backups (cluster.py:4879, create_dir) 2026-09-21 00:51:46.663000 [ 644 ] DEBUG : Setup directory for instance: node2 (cluster.py:2758, start) 2026-09-21 00:51:46.664000 [ 644 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2026-09-21 00:51:46.664000 [ 644 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2026-09-21 00:51:46.664000 [ 644 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2026-09-21 00:51:46.665000 [ 644 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2026-09-21 00:51:46.666000 [ 644 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/configs/config.d (cluster.py:4741, create_dir) 2026-09-21 00:51:46.667000 [ 644 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/database (cluster.py:4758, create_dir) 2026-09-21 00:51:46.667000 [ 644 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/logs (cluster.py:4769, create_dir) 2026-09-21 00:51:46.668000 [ 644 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4850, create_dir) 2026-09-21 00:51:46.668000 [ 644 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/backups (cluster.py:4879, create_dir) 2026-09-21 00:51:46.668000 [ 644 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:5ccda723c1fc', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper3/coordination'} stored in /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/.env (cluster.py:96, _create_env_file) 2026-09-21 00:51:46.669000 [ 644 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2026-09-21 00:51:46.669000 [ 644 ] DEBUG : No config file found (config.py:28, find_config_file) 2026-09-21 00:51:46.669000 [ 644 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2026-09-21 00:51:46.670000 [ 644 ] DEBUG : No config file found (config.py:28, find_config_file) 2026-09-21 00:51:46.684000 [ 644 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2026-09-21 00:51:46.685000 [ 644 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/.env --project-name roottestbackuprestoreonclustercancelbackup-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/docker-compose.yml pull] (cluster.py:121, run_and_check) 2026-09-21 00:51:57.263000 [ 644 ] DEBUG : Stderr: node2 Skipped - Image is already being pulled by zoo3 (cluster.py:147, run_and_check) 2026-09-21 00:51:57.263000 [ 644 ] DEBUG : Stderr: node1 Skipped - Image is already being pulled by zoo3 (cluster.py:147, run_and_check) 2026-09-21 00:51:57.263000 [ 644 ] DEBUG : Stderr: zoo1 Skipped - Image is already being pulled by zoo3 (cluster.py:147, run_and_check) 2026-09-21 00:51:57.263000 [ 644 ] DEBUG : Stderr: zoo2 Skipped - Image is already being pulled by zoo3 (cluster.py:147, run_and_check) 2026-09-21 00:51:57.264000 [ 644 ] DEBUG : Stderr: zoo3 Pulling (cluster.py:147, run_and_check) 2026-09-21 00:51:57.264000 [ 644 ] DEBUG : Stderr: zoo3 Pulled (cluster.py:147, run_and_check) 2026-09-21 00:51:57.264000 [ 644 ] DEBUG : Setup ZooKeeper (cluster.py:2799, start) 2026-09-21 00:51:57.264000 [ 644 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper1/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper1/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper1/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper2/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper2/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper2/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper3/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper3/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/keeper3/coordination'] (cluster.py:2800, start) 2026-09-21 00:51:57.266000 [ 644 ] DEBUG : Command:[docker compose --project-name roottestbackuprestoreonclustercancelbackup-gw0 --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:121, run_and_check) 2026-09-21 00:51:58.147000 [ 644 ] DEBUG : Stderr:time="2026-09-21T00:51:57Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2026-09-21 00:51:58.148000 [ 644 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw0_default Creating (cluster.py:147, run_and_check) 2026-09-21 00:51:58.148000 [ 644 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw0_default Created (cluster.py:147, run_and_check) 2026-09-21 00:51:58.148000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Creating (cluster.py:147, run_and_check) 2026-09-21 00:51:58.148000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Creating (cluster.py:147, run_and_check) 2026-09-21 00:51:58.148000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Creating (cluster.py:147, run_and_check) 2026-09-21 00:51:58.148000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Created (cluster.py:147, run_and_check) 2026-09-21 00:51:58.148000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Created (cluster.py:147, run_and_check) 2026-09-21 00:51:58.149000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Created (cluster.py:147, run_and_check) 2026-09-21 00:51:58.149000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Starting (cluster.py:147, run_and_check) 2026-09-21 00:51:58.149000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Starting (cluster.py:147, run_and_check) 2026-09-21 00:51:58.149000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Starting (cluster.py:147, run_and_check) 2026-09-21 00:51:58.149000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Started (cluster.py:147, run_and_check) 2026-09-21 00:51:58.149000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Started (cluster.py:147, run_and_check) 2026-09-21 00:51:58.149000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Started (cluster.py:147, run_and_check) 2026-09-21 00:51:58.150000 [ 644 ] DEBUG : Stderr:time="2026-09-21T00:51:58Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2026-09-21 00:51:58.150000 [ 644 ] DEBUG : Stderr:time="2026-09-21T00:51:58Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2026-09-21 00:51:58.150000 [ 644 ] DEBUG : Wait ZooKeeper to start (cluster.py:2436, wait_zookeeper_to_start) 2026-09-21 00:51:58.150000 [ 644 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2005, get_instance_ip) 2026-09-21 00:51:58.153000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:51:58.154000 [ 644 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.1.4, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2026-09-21 00:51:58.156000 [ 644 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2026-09-21 00:51:58.157000 [ 644 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-09-21 00:51:58.245000 [ 644 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2026-09-21 00:51:58.246000 [ 644 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-09-21 00:51:58.392000 [ 644 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2026-09-21 00:51:58.393000 [ 644 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-09-21 00:51:58.779000 [ 644 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2026-09-21 00:51:58.780000 [ 644 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-09-21 00:51:59.845000 [ 644 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2026-09-21 00:51:59.846000 [ 644 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-09-21 00:52:02.349000 [ 644 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2026-09-21 00:52:02.349000 [ 644 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-09-21 00:52:02.362000 [ 644 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-09-21 00:52:02.363000 [ 644 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-09-21 00:52:02.364000 [ 644 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-09-21 00:52:02.366000 [ 644 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-09-21 00:52:02.373000 [ 644 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-09-21 00:52:02.374000 [ 644 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-09-21 00:52:02.374000 [ 644 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-09-21 00:52:02.475000 [ 644 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-09-21 00:52:02.475000 [ 644 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-09-21 00:52:02.475000 [ 644 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2005, get_instance_ip) 2026-09-21 00:52:02.480000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:02.481000 [ 644 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.1.3, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2026-09-21 00:52:02.483000 [ 644 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-09-21 00:52:02.484000 [ 644 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-09-21 00:52:02.496000 [ 644 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-09-21 00:52:02.497000 [ 644 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-09-21 00:52:02.498000 [ 644 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-09-21 00:52:02.499000 [ 644 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-09-21 00:52:02.506000 [ 644 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-09-21 00:52:02.506000 [ 644 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-09-21 00:52:02.506000 [ 644 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-09-21 00:52:02.607000 [ 644 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-09-21 00:52:02.607000 [ 644 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-09-21 00:52:02.608000 [ 644 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2005, get_instance_ip) 2026-09-21 00:52:02.612000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:02.613000 [ 644 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.1.2, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2026-09-21 00:52:02.614000 [ 644 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2026-09-21 00:52:02.615000 [ 644 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-09-21 00:52:02.621000 [ 644 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-09-21 00:52:02.621000 [ 644 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-09-21 00:52:02.623000 [ 644 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-09-21 00:52:02.623000 [ 644 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-09-21 00:52:02.630000 [ 644 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-09-21 00:52:02.630000 [ 644 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-09-21 00:52:02.630000 [ 644 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-09-21 00:52:02.703000 [ 644 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-09-21 00:52:02.704000 [ 644 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-09-21 00:52:02.704000 [ 644 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2452, wait_zookeeper_nodes_to_start) 2026-09-21 00:52:02.705000 [ 644 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/.env --project-name roottestbackuprestoreonclustercancelbackup-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/docker-compose.yml up -d --no-recreate') (cluster.py:3139, start) 2026-09-21 00:52:02.705000 [ 644 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/.env --project-name roottestbackuprestoreonclustercancelbackup-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2026-09-21 00:52:03.284000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Running (cluster.py:147, run_and_check) 2026-09-21 00:52:03.284000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Running (cluster.py:147, run_and_check) 2026-09-21 00:52:03.284000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Running (cluster.py:147, run_and_check) 2026-09-21 00:52:03.284000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Creating (cluster.py:147, run_and_check) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Creating (cluster.py:147, run_and_check) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Created (cluster.py:147, run_and_check) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Created (cluster.py:147, run_and_check) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Starting (cluster.py:147, run_and_check) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Starting (cluster.py:147, run_and_check) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Started (cluster.py:147, run_and_check) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Started (cluster.py:147, run_and_check) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : ClickHouse instance created (cluster.py:3147, start) 2026-09-21 00:52:03.285000 [ 644 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2005, get_instance_ip) 2026-09-21 00:52:03.288000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.288000 [ 644 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2015, get_instance_global_ipv6) 2026-09-21 00:52:03.290000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.291000 [ 644 ] DEBUG : Waiting for ClickHouse start in node1, ip: 172.16.1.5... (cluster.py:3155, start) 2026-09-21 00:52:03.292000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.295000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.399000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.504000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.607000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.711000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.814000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:03.919000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.024000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.128000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.232000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.336000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.440000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.544000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.648000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.752000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.856000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:04.961000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.065000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.168000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.272000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.376000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.481000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.585000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.689000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.793000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:05.896000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:06.000000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:06.104000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:06.208000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/a74c9a01b258eefa7eee0fa664ea0a34f728f86930d841cbd6cd6e806ada747b/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:06.209000 [ 644 ] DEBUG : ClickHouse node1 started (cluster.py:3159, start) 2026-09-21 00:52:06.209000 [ 644 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2005, get_instance_ip) 2026-09-21 00:52:06.212000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:06.213000 [ 644 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2015, get_instance_global_ipv6) 2026-09-21 00:52:06.215000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:06.216000 [ 644 ] DEBUG : Waiting for ClickHouse start in node2, ip: 172.16.1.6... (cluster.py:3155, start) 2026-09-21 00:52:06.219000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:06.222000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/containers/5f64d62e95068826b85f4c0667ae0712162933b54dffc8a42371a78fd1e849d2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-09-21 00:52:06.223000 [ 644 ] DEBUG : ClickHouse node2 started (cluster.py:3159, start) ----------------------------- Captured stdout call ----------------------------- Using node1 as initiator Sleeping 2.5119438701214154 seconds Waiting for number of system processes = 1+ Got 1 system processes for backup 9956606f9ff84a91b140da4fdf8acb59 after waiting 0 seconds node2: Restarting... node2: Restarted Waiting for number of system processes = 0 Got 0 system processes for backup 9956606f9ff84a91b140da4fdf8acb59 after waiting 0 seconds node1: Found errors: ['QUERY_WAS_CANCELLED'] QUERY_WAS_CANCELLED Got error from host node2:9000. DB::Exception: Query was cancelled. Stack trace:\n\n0. ./contrib/llvm-project/libcxx/include/__exception/exception.h:113: Poco::Exception::Exception(String const&, int) @ 0x00000000210ee800\n1. ./build_docker/./src/Common/Exception.cpp:108: DB::Exception::Exception(DB::Exception::MessageMasked&&, int, bool) @ 0x0000000010dfe214\n2. DB::Exception::Exception(PreformattedMessage&&, int) @ 0x0000000008ab0680\n3. DB::Exception::Exception<>(int, FormatStringHelperImpl<>) @ 0x0000000008abf03a\n4. ./build_docker/./src/Interpreters/ProcessList.cpp:567: DB::QueryStatus::throwQueryWasCancelled() const @ 0x0000000018daf5ab\n5. ./build_docker/./src/Interpreters/ProcessList.cpp:520: DB::QueryStatus::throwProperExceptionIfNeeded(unsigned long const&, unsigned long const&) @ 0x0000000018daf4be\n6. ./build_docker/./src/Interpreters/ProcessList.cpp:557: DB::QueryStatus::checkTimeLimit() @ 0x0000000018dafc0a\n7. ./build_docker/./src/Backups/BackupsWorker.cpp:697: DB::BackupsWorker::writeBackupEntries(std::shared_ptr, std::vector>, std::allocator>>>&&, String const&, std::shared_ptr, bool, std::shared_ptr)::$_0::operator()() const @ 0x00000000171ac694\n8. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107], std::vector>, std::allocator>>>&&, String const&, std::shared_ptr, bool, std::shared_ptr)::$_0, void ()>>(std::__function::__policy_storage const*) @ 0x00000000171b46c2\n9. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x00000000141f07b1\n10. ./src/Common/threadPoolCallbackRunner.h:178: DB::ThreadPoolCallbackRunnerLocal>, std::function>::operator()(std::function&&, Priority, std::optional)::\'lambda\'()::operator()() @ 0x00000000141f0532\n11. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107]>, std::function>::operator()(std::function&&, Priority, std::optional)::\'lambda\'(), void ()>>(std::__function::__policy_storage const*) @ 0x00000000141f0422\n12. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010f86b8f\n13. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: ThreadFromGlobalPoolImpl::ThreadFromGlobalPoolImpl>::ThreadFromThreadPool::*)(), ThreadPoolImpl>::ThreadFromThreadPool*>(void (ThreadPoolImpl>::ThreadFromThreadPool::*&&)(), ThreadPoolImpl>::ThreadFromThreadPool*&&)::\'lambda\'()::operator()() @ 0x0000000010f8f0c6\n14. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107]::ThreadFromGlobalPoolImpl>::ThreadFromThreadPool::*)(), ThreadPoolImpl>::ThreadFromThreadPool*>(void (ThreadPoolImpl>::ThreadFromThreadPool::*&&)(), ThreadPoolImpl>::ThreadFromThreadPool*&&)::\'lambda\'(), void ()>>(std::__function::__policy_storage const*) @ 0x0000000010f8efe2\n15. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010f83240\n16. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: void* std::__thread_proxy[abi:ne190107]>, void (ThreadPoolImpl::ThreadFromThreadPool::*)(), ThreadPoolImpl::ThreadFromThreadPool*>>(void*) @ 0x0000000010f8bd7c\n17. __tsan_thread_start_func @ 0x0000000008a23de8\n18. ? @ 0x00007fb3f5b98ac3\n19. ? @ 0x00007fb3f5c2a850\n\nJob\'s origin stack trace:\n0. ./build_docker/./src/Common/StackTrace.cpp:386: StackTrace::StackTrace() @ 0x0000000010eaeef3\n1. ./build_docker/./src/Common/ThreadPool.cpp:130: void boost::heap::priority_queue, boost::parameter::void_, boost::parameter::void_, boost::parameter::void_>::emplace, Priority&, StrongTypedef&, DB::OpenTelemetry::TracingContextOnThread const, bool&, (anonymous namespace)::ScopedDecrement>(std::function&&, Priority&, StrongTypedef&, DB::OpenTelemetry::TracingContextOnThread const&&, bool&, (anonymous namespace)::ScopedDecrement&&) @ 0x0000000010f81d9e\n2. ./build_docker/./src/Common/ThreadPool.cpp:401: void ThreadPoolImpl>::scheduleImpl(std::function, Priority, std::optional, bool) @ 0x0000000010f88a15\n3. ./build_docker/./src/Common/ThreadPool.cpp:494: ThreadPoolImpl>::scheduleOrThrowOnError(std::function, Priority) @ 0x0000000010f8824b\n4. ./src/Common/threadPoolCallbackRunner.h:188: DB::ThreadPoolCallbackRunnerLocal>, std::function>::operator()(std::function&&, Priority, std::optional) @ 0x00000000141efc4e\n5. ./build_docker/./src/Backups/BackupsWorker.cpp:729: DB::BackupsWorker::writeBackupEntries(std::shared_ptr, std::vector>, std::allocator>>>&&, String const&, std::shared_ptr, bool, std::shared_ptr) @ 0x00000000171abca7\n6. ./build_docker/./src/Backups/BackupsWorker.cpp:608: DB::BackupsWorker::doBackup(std::shared_ptr, std::shared_ptr const&, String const&, DB::BackupSettings const&, std::shared_ptr, std::shared_ptr, bool, std::shared_ptr const&) @ 0x00000000171a9c44\n7. ./build_docker/./src/Backups/BackupsWorker.cpp:441: DB::BackupsWorker::BackupStarter::doBackup() @ 0x00000000171bafe7\n8. ./build_docker/./src/Backups/BackupsWorker.cpp:511: void std::__function::__policy_invoker::__call_impl[abi:ne190107] const&, std::shared_ptr const&)::$_0, void ()>>(std::__function::__policy_storage const*) @ 0x00000000171b450d\n9. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000016b47503\n10. ./contrib/llvm-project/libcxx/include/future:1589: std::packaged_task::operator()() @ 0x0000000016b477f5\n11. ./src/Common/threadPoolCallbackRunner.h:52: void std::__function::__policy_invoker::__call_impl[abi:ne190107] (std::function&&, Priority)> DB::threadPoolCallbackRunnerUnsafe>(ThreadPoolImpl>&, String const&)::\'lambda\'(std::function&&, Priority)::operator()(std::function&&, Priority)::\'lambda0\'(), void ()>>(std::__function::__policy_storage const*) @ 0x0000000016b4772d\n12. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010f86b8f\n13. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: ThreadFromGlobalPoolImpl::ThreadFromGlobalPoolImpl>::ThreadFromThreadPool::*)(), ThreadPoolImpl>::ThreadFromThreadPool*>(void (ThreadPoolImpl>::ThreadFromThreadPool::*&&)(), ThreadPoolImpl>::ThreadFromThreadPool*&&)::\'lambda\'()::operator()() @ 0x0000000010f8f0c6\n14. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107]::ThreadFromGlobalPoolImpl>::ThreadFromThreadPool::*)(), ThreadPoolImpl>::ThreadFromThreadPool*>(void (ThreadPoolImpl>::ThreadFromThreadPool::*&&)(), ThreadPoolImpl>::ThreadFromThreadPool*&&)::\'lambda\'(), void ()>>(std::__function::__policy_storage const*) @ 0x0000000010f8efe2\n15. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010f83240\n16. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: void* std::__thread_proxy[abi:ne190107]>, void (ThreadPoolImpl::ThreadFromThreadPool::*)(), ThreadPoolImpl::ThreadFromThreadPool*>>(void*) @ 0x0000000010f8bd7c\n17. __tsan_thread_start_func @ 0x0000000008a23de8\n18. ? @ 0x00007fb3f5b98ac3\n19. ? @ 0x00007fb3f5c2a850\n\nJob\'s origin stack trace:\n0. ./build_docker/./src/Common/StackTrace.cpp:386: StackTrace::StackTrace() @ 0x0000000010eaeef3\n1. ./build_docker/./src/Common/ThreadPool.cpp:130: void boost::heap::priority_queue, boost::parameter::void_, boost::parameter::void_, boost::parameter::void_>::emplace, Priority&, StrongTypedef&, DB::OpenTelemetry::TracingContextOnThread const, bool&, (anonymous namespace)::ScopedDecrement>(std::function&&, Priority&, StrongTypedef&, DB::OpenTelemetry::TracingContextOnThread const&&, bool&, (anonymous namespace)::ScopedDecrement&&) @ 0x0000000010f81d9e\n2. ./build_docker/./src/Common/ThreadPool.cpp:401: void ThreadPoolImpl>::scheduleImpl(std::function, Priority, std::optional, bool) @ 0x0000000010f88a15\n3. ./build_docker/./src/Common/ThreadPool.cpp:494: ThreadPoolImpl>::scheduleOrThrowOnError(std::function, Priority) @ 0x0000000010f8824b\n4. ./src/Common/threadPoolCallbackRunner.h:52: std::function (std::function&&, Priority)> DB::threadPoolCallbackRunnerUnsafe>(ThreadPoolImpl>&, String const&)::\'lambda\'(std::function&&, Priority)::operator()(std::function&&, Priority) @ 0x0000000016b468c5\n5. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: std::future std::__function::__policy_invoker (std::function&&, Priority)>::__call_impl[abi:ne190107] (std::function&&, Priority)> DB::threadPoolCallbackRunnerUnsafe>(ThreadPoolImpl>&, String const&)::\'lambda\'(std::function&&, Priority), std::future (std::function&&, Priority)>>(std::__function::__policy_storage const*, std::function&&, Priority&&) @ 0x0000000016b465a5\n6. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x00000000171a7576\n7. ./build_docker/./src/Backups/BackupsWorker.cpp:340: DB::BackupsWorker::start(std::shared_ptr const&, std::shared_ptr) @ 0x00000000171a731a\n8. ./build_docker/./src/Interpreters/InterpreterBackupQuery.cpp:44: DB::InterpreterBackupQuery::execute() @ 0x000000001919c2a2\n9. ./build_docker/./src/Interpreters/executeQuery.cpp:1457: DB::executeQueryImpl(char const*, char const*, std::shared_ptr, DB::QueryFlags, DB::QueryProcessingStage::Enum, DB::ReadBuffer*, std::shared_ptr&) @ 0x00000000190fefce\n10. ./build_docker/./src/Interpreters/executeQuery.cpp:1761: DB::executeQuery(DB::ReadBuffer&, DB::WriteBuffer&, bool, std::shared_ptr, std::function, DB::QueryFlags, std::optional const&, std::function const&, std::optional const&)>) @ 0x00000000191038fb\n11. ./build_docker/./src/Interpreters/DDLWorker.cpp:510: DB::DDLWorker::tryExecuteQuery(DB::DDLTaskBase&, std::shared_ptr const&, bool) @ 0x00000000185959c7\n12. ./build_docker/./src/Interpreters/DDLWorker.cpp:675: DB::DDLWorker::processTask(DB::DDLTaskBase&, std::shared_ptr const&, bool) @ 0x0000000018593113\n13. ./build_docker/./src/Interpreters/DDLWorker.cpp:453: DB::DDLWorker::scheduleTasks(bool) @ 0x000000001858faf8\n14. ./build_docker/./src/Interpreters/DDLWorker.cpp:1203: DB::DDLWorker::runMainThread() @ 0x00000000185873a2\n15. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: ThreadFromGlobalPoolImpl::ThreadFromGlobalPoolImpl(void (DB::DDLWorker::*&&)(), DB::DDLWorker*&&)::\'lambda\'()::operator()() @ 0x00000000185aa106\n16. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107]::ThreadFromGlobalPoolImpl(void (DB::DDLWorker::*&&)(), DB::DDLWorker*&&)::\'lambda\'(), void ()>>(std::__function::__policy_storage const*) @ 0x00000000185aa022\n17. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010f83240\n18. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: void* std::__thread_proxy[abi:ne190107]>, void (ThreadPoolImpl::ThreadFromThreadPool::*)(), ThreadPoolImpl::ThreadFromThreadPool*>>(void*) @ 0x0000000010f8bd7c\n19. __tsan_thread_start_func @ 0x0000000008a23de8\n20. ? @ 0x00007fb3f5b98ac3\n21. ? @ 0x00007fb3f5c2a850\n node2: Found errors: ['NETLINK_ERROR'] NO_ELEMENTS_IN_CONFIG Certificate file is not set. NETLINK_ERROR Can\'t receive Netlink response: error -2 ------------------------------ Captured log call ------------------------------- 2026-09-21 00:52:07.228000 [ 644 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3648, query) 2026-09-21 00:52:07.595000 [ 644 ] DEBUG : Executing query CREATE TABLE tbl ON CLUSTER 'cluster' (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}') ORDER BY tuple() PARTITION BY x%10 on node2 (cluster.py:3648, query) 2026-09-21 00:52:08.213000 [ 644 ] DEBUG : Executing query INSERT INTO tbl SELECT number FROM numbers(10) on node2 (cluster.py:3648, query) 2026-09-21 00:52:09.132000 [ 644 ] DEBUG : Executing query BACKUP TABLE tbl ON CLUSTER 'cluster' TO Disk('backups', '9956606f9ff84a91b140da4fdf8acb59') SETTINGS id='9956606f9ff84a91b140da4fdf8acb59' ASYNC on node1 (cluster.py:3648, query) 2026-09-21 00:52:09.499000 [ 644 ] DEBUG : Executing query SELECT status FROM system.backups WHERE id='9956606f9ff84a91b140da4fdf8acb59' on node1 (cluster.py:3648, query) 2026-09-21 00:52:09.866000 [ 644 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%9956606f9ff84a91b140da4fdf8acb59%') on node1 (cluster.py:3648, query) 2026-09-21 00:52:12.745000 [ 644 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%9956606f9ff84a91b140da4fdf8acb59%') on node2 (cluster.py:3648, query) 2026-09-21 00:52:13.163000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:13.163000 [ 644 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps -C clickhouse] (cluster.py:121, run_and_check) 2026-09-21 00:52:13.245000 [ 644 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:145, run_and_check) 2026-09-21 00:52:13.245000 [ 644 ] DEBUG : Stdout: 8 ? 00:00:04 clickhouse (cluster.py:145, run_and_check) 2026-09-21 00:52:13.245000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill clickhouse'] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:13.245000 [ 644 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c pkill clickhouse] (cluster.py:121, run_and_check) 2026-09-21 00:52:13.316000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:13.317000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:13.393000 [ 644 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-09-21 00:52:14.394000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:14.395000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:14.461000 [ 644 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-09-21 00:52:15.463000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:15.463000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:15.539000 [ 644 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-09-21 00:52:16.541000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:16.541000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:16.612000 [ 644 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-09-21 00:52:17.613000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:17.613000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:17.686000 [ 644 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-09-21 00:52:18.688000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:18.688000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:18.757000 [ 644 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-09-21 00:52:19.759000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:19.759000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:19.836000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:19.836000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:19.902000 [ 644 ] DEBUG : No clickhouse process running. Start new one. (cluster.py:4014, start_clickhouse) 2026-09-21 00:52:19.905000 [ 644 ] DEBUG : http://localhost:None "POST /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw0-node2-1/exec HTTP/1.1" 201 74 (connectionpool.py:547, _make_request) 2026-09-21 00:52:19.945000 [ 644 ] DEBUG : http://localhost:None "POST /v1.46/exec/a38b0a3a2e4b15b4b2f2454e26d1e569d867090fdba982ec247502bbfc42abeb/start HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2026-09-21 00:52:19.948000 [ 644 ] DEBUG : http://localhost:None "GET /v1.46/exec/a38b0a3a2e4b15b4b2f2454e26d1e569d867090fdba982ec247502bbfc42abeb/json HTTP/1.1" 200 585 (connectionpool.py:547, _make_request) 2026-09-21 00:52:20.950000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:20.951000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:21.029000 [ 644 ] DEBUG : Stdout:812 (cluster.py:145, run_and_check) 2026-09-21 00:52:21.029000 [ 644 ] DEBUG : Clickhouse process running. (cluster.py:4028, start_clickhouse) 2026-09-21 00:52:21.029000 [ 644 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw0-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-09-21 00:52:21.029000 [ 644 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw0-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:21.083000 [ 644 ] DEBUG : Stdout:812 (cluster.py:145, run_and_check) 2026-09-21 00:52:21.083000 [ 644 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-09-21 00:52:21.850000 [ 644 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-09-21 00:52:22.568000 [ 644 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-09-21 00:52:23.285000 [ 644 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-09-21 00:52:24.003000 [ 644 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-09-21 00:52:24.371000 [ 644 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%9956606f9ff84a91b140da4fdf8acb59%') on node1 (cluster.py:3648, query) 2026-09-21 00:52:24.737000 [ 644 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%9956606f9ff84a91b140da4fdf8acb59%') on node2 (cluster.py:3648, query) 2026-09-21 00:52:25.154000 [ 644 ] DEBUG : Executing query SELECT status FROM system.backups WHERE id='9956606f9ff84a91b140da4fdf8acb59' on node1 (cluster.py:3648, query) 2026-09-21 00:52:25.522000 [ 644 ] DEBUG : Executing query SELECT error FROM system.backups WHERE id='9956606f9ff84a91b140da4fdf8acb59' on node1 (cluster.py:3648, query) 2026-09-21 00:52:25.889000 [ 644 ] DEBUG : Executing query SYSTEM FLUSH LOGS on node1 (cluster.py:3648, query) 2026-09-21 00:52:27.009000 [ 644 ] DEBUG : Executing query SELECT status FROM system.backup_log WHERE id='9956606f9ff84a91b140da4fdf8acb59' ORDER BY status on node1 (cluster.py:3648, query) 2026-09-21 00:52:27.427000 [ 644 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3648, query) 2026-09-21 00:52:27.795000 [ 644 ] DEBUG : Executing query SELECT name FROM system.errors WHERE last_error_time >= toDateTime('2026-09-21 00:52:07') AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) AND NOT (name == 'NO_ELEMENTS_IN_CONFIG') on node1 (cluster.py:3648, query) 2026-09-21 00:52:28.161000 [ 644 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('2026-09-21 00:52:07') on node1 (cluster.py:3648, query) 2026-09-21 00:52:28.528000 [ 644 ] DEBUG : Executing query SELECT name FROM system.errors WHERE last_error_time >= toDateTime('2026-09-21 00:52:07') AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) AND NOT (name == 'NO_ELEMENTS_IN_CONFIG') on node2 (cluster.py:3648, query) 2026-09-21 00:52:28.946000 [ 644 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('2026-09-21 00:52:07') on node2 (cluster.py:3648, query) ---------------------------- Captured log teardown ----------------------------- 2026-09-21 00:52:29.460000 [ 644 ] DEBUG : Executing query DROP TABLE IF EXISTS tbl ON CLUSTER 'cluster' SYNC on node1 (cluster.py:3648, query) 2026-09-21 00:52:30.078000 [ 644 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/.env --project-name roottestbackuprestoreonclustercancelbackup-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2026-09-21 00:52:31.376000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.376000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.376000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.376000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.376000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.376000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.377000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.377000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.377000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.377000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.377000 [ 644 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2026-09-21 00:52:31.394000 [ 644 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2026-09-21 00:52:31.411000 [ 644 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/.env --project-name roottestbackuprestoreonclustercancelbackup-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw0/node2/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2026-09-21 00:52:31.995000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.996000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.996000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.996000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Removing (cluster.py:147, run_and_check) 2026-09-21 00:52:31.996000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.996000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Removing (cluster.py:147, run_and_check) 2026-09-21 00:52:31.996000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node2-1 Removed (cluster.py:147, run_and_check) 2026-09-21 00:52:31.996000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-node1-1 Removed (cluster.py:147, run_and_check) 2026-09-21 00:52:31.997000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.997000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.997000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Stopping (cluster.py:147, run_and_check) 2026-09-21 00:52:31.997000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.997000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Removing (cluster.py:147, run_and_check) 2026-09-21 00:52:31.997000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.997000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Removing (cluster.py:147, run_and_check) 2026-09-21 00:52:31.998000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Stopped (cluster.py:147, run_and_check) 2026-09-21 00:52:31.998000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Removing (cluster.py:147, run_and_check) 2026-09-21 00:52:31.998000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo2-1 Removed (cluster.py:147, run_and_check) 2026-09-21 00:52:31.998000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo3-1 Removed (cluster.py:147, run_and_check) 2026-09-21 00:52:31.998000 [ 644 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw0-zoo1-1 Removed (cluster.py:147, run_and_check) 2026-09-21 00:52:31.998000 [ 644 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw0_default Removing (cluster.py:147, run_and_check) 2026-09-21 00:52:31.998000 [ 644 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw0_default Removed (cluster.py:147, run_and_check) 2026-09-21 00:52:31.999000 [ 644 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2026-09-21 00:52:32.032000 [ 644 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2026-09-21 00:52:32.062000 [ 644 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2026-09-21 00:52:32.091000 [ 644 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2026-09-21 00:52:32.092000 [ 644 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2026-09-21 00:52:32.122000 [ 644 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2026-09-21 00:52:32.122000 [ 644 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup-gw0 (cluster.py:879, cleanup) 2026-09-21 00:52:32.122000 [ 644 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2026-09-21 00:52:32.151000 [ 644 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2026-09-21 00:52:32.151000 [ 644 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2026-09-21 00:52:32.194000 [ 644 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2026-09-21 00:52:32.194000 [ 644 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2026-09-21 00:52:32.194000 [ 644 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2026-09-21 00:52:32.195000 [ 644 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2026-09-21 00:52:32.224000 [ 644 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-09-21 00:52:32.225000 [ 644 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) ----------------- generated report log file: parallel0_1.jsonl ----------------- ============================== slowest durations =============================== 23.14s call test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 19.95s setup test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 2.77s teardown test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup =========================== short test summary info ============================ FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup ============================== 1 failed in 57.94s ============================== Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_w90h77 --privileged --dns-search='.' --memory=30709030912 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 ' returned non-zero exit status 1.